Loop Through an Array
Command Prototype
`For Each value In dataStruct
Next`
Command Description
Loop through every piece of data in Collection and executes block of statements "Block” after substituting the name (for dictionary) or index (for array) of the data into Key, and substituting the value of the data into Value
Parameter Description
- Required Parameter
- value--Loop through values
- dataStruct--The data structure to be looped through